Dashboard Temp Share Shortlinks Frames API

HTMLify

index.html
Views: 24 | Author: huxn-webdev
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Foody</title>
    <link rel="stylesheet" href="style.css" />
  </head>
  <body>
    <!-- HEADER -->
    <header class="top-header">
      <h1 class="logo">F<span class="highlight">oo</span>dy</h1>
      <section class="top-header__content">
        <div class="content">
          <h1 class="main-headings">A Chef In Every Tasty Meal Box</h1>
          <div class="btns">
            <a href="#" class="main-btn-fill btn-animation">Select Program</a>
            <a href="#" class="main-btn btn-animation">View Menu</a>
          </div>
        </div>
        <img src="assets/Images/img-1.png" class="main-img" />
      </section>
    </header>

    <section class="delivery">
      <div class="delivery__img"></div>
      <div class="delivery__content">
        <div class="delivery__headings">We Deliver Anywhere</div>
        <p class="delivery__sub-headings">
          Each fresh meal is perfectly sized for 1 person to enjoy at 1
          sittings. <br />
          Our fully-prepared meals are delivered freash, & to eat in 3 minutes.
        </p>
        <div class="btns">
          <a href="#" class="main-btn-fill btn-animation">Select Program</a>
          <a href="#" class="main-btn btn-animation delivery-btn">View Menu</a>
        </div>
      </div>
    </section>

    <section class="why-foody">
      <h1 class="main-headings foody-headings">Why Foody Meal</h1>
      <div class="why-foody__cards">
        <div class="cards__card">
          <h1 class="card__title">Variety</h1>
          <div class="card__img img-one"></div>
          <p class="card-info">60+ recipes a week, cooked from 10 mins</p>
          <p class="card-info">
            Family classics, global cuisines plus Joe Wickss health rang
          </p>
          <p class="card-info">Tasty plant based and gluten free options too</p>
        </div>
        <div class="cards__card">
          <h1 class="card__title">Quality</h1>
          <div class="card__img img-one"></div>
          <p class="card-info">Fresh ingredients from trusted suppliers</p>
          <p class="card-info">100% British fresh meat</p>
          <p class="card-info">
            All recipes tried, tasted and loved by our chefs and customers
          </p>
        </div>
        <div class="cards__card">
          <h1 class="card__title">Simplicity</h1>
          <div class="card__img img-one"></div>
          <p class="card-info">Easy-to follow recipe cards</p>
          <p class="card-info">Precise ingredients with zero food waste</p>
          <p class="card-info">Precise ingredients with zero food waste</p>
        </div>
      </div>
      <div class="btns btn-container">
        <a href="#" class="main-btn btn-lg btn-animation">Get Started</a>
      </div>
    </section>

    <section class="testimonial">
      <div class="user-img"></div>
      <div class="user-rating-info">
        <p>
          "I love coming home to a foody with four different ban ging recipes
          each week. With so many dishes to choose from there's always something
          new to try!"
        </p>
        <h1 class="user-name">
          <span class="highlight">Joe Wicks</span> | The Body Coach
        </h1>
      </div>
    </section>

    <footer class="footer">
      <div class="footer-card">
        <h1 class="footer-title">Location</h1>
        <p class="footer-info">Start With Our Fresh Shrimps</p>
        <p class="footer-info">4213 Somewhere On Earth</p>
      </div>
      <div class="footer-card">
        <h1 class="footer-title">Working Hours</h1>
        <p class="footer-info">Monday Thursday Friday</p>
        <p class="footer-info">Saturday Sunday</p>
      </div>
      <div class="footer-card">
        <h1 class="footer-title">Contact Us</h1>
        <a href="#" class="footer-info">webdevacademy6@gmail.com</a>
      </div>
    </footer>
  </body>
</html>